DX11 CREATE TEMP VECTOR4

Creates a new temporary vector4. Its initial values can either be provided to this function or not;
if they are omitted, the vector will be initialized to all 0.0 components.
A temporary vector is very fast to create on the fly and can be used to chain several math functions together
without having to store an intermediary result for each step along the way.
All temporary vectors / matrices are released when you call DX11 SYNC; you don't need to keep track of and release them manually.

  Syntax
Return Dword = DX11 CREATE TEMP VECTOR4([x], [y], [z], [w])
  Parameters
[Optional] x
Float
The initial X component of the created vector.
[Optional] y
Float
The initial Y component of the created vector.
[Optional] z
Float
The initial Z component of the created vector.
[Optional] w
Float
The initial W component of the created vector.

  Returns

The created vector4.

  See also

MATH Functions Menu
DX11 Function Categories